projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fb9463
)
* Don't require trailing backslashes in `comp-eln-load-path' (bug#45462)
author
Andrea Corallo
<akrl@sdf.org>
Sun, 27 Dec 2020 16:50:05 +0000
(17:50 +0100)
committer
Andrea Corallo
<akrl@sdf.org>
Sun, 27 Dec 2020 16:56:17 +0000
(17:56 +0100)
* src/comp.c (Fcomp_el_to_eln_filename): Don't require
trailing backslashes in comp-eln-load-path.
src/comp.c
patch
|
blob
|
history
diff --git
a/src/comp.c
b/src/comp.c
index ee3c15a2f676e4b6a7adf29939f096c21b463f19..52ebf92c500764ab5d703508801def3fe0ee749e 100644
(file)
--- a/
src/comp.c
+++ b/
src/comp.c
@@
-4085,7
+4085,8
@@
If BASE-DIR is nil use the first entry in `comp-eln-load-path'. */)
base_dir = Fexpand_file_name (base_dir, Vinvocation_directory);
return Fexpand_file_name (filename,
- concat2 (base_dir, Vcomp_native_version_dir));
+ concat2 (Ffile_name_as_directory (base_dir),
+ Vcomp_native_version_dir));
}
DEFUN ("comp--install-trampoline", Fcomp__install_trampoline,